Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 9, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@stylistic/eslint-plugin-js (source) ^2.11.0 -> ^2.12.0 age adoption passing confidence
@sveltejs/kit (source) ^2.9.0 -> ^2.9.1 age adoption passing confidence
carbon-components-svelte ^0.86.2 -> ^0.87.0 age adoption passing confidence
carbon-preprocess-svelte ^0.11.8 -> ^0.11.9 age adoption passing confidence
debug ^4.3.7 -> ^4.4.0 age adoption passing confidence
eslint-plugin-n ^17.14.0 -> ^17.15.0 age adoption passing confidence
express (source) ^4.21.1 -> ^4.21.2 age adoption passing confidence
magic-string ^0.30.14 -> ^0.30.15 age adoption passing confidence
playwright-core (source) ~1.49.0 -> ~1.49.1 age adoption passing confidence
pnpm (source) 9.14.4 -> 9.15.0 age adoption passing confidence
prettier (source) ^3.4.1 -> ^3.4.2 age adoption passing confidence
sass ^1.81.0 -> ^1.82.0 age adoption passing confidence
svelte (source) ^5.3.1 -> ^5.10.0 age adoption passing confidence
svelte-check ^4.1.0 -> ^4.1.1 age adoption passing confidence
typescript-eslint (source) ^8.16.0 -> ^8.18.0 age adoption passing confidence
vite (source) ^6.0.2 -> ^6.0.3 age adoption passing confidence
vitest (source) ^2.1.6 -> ^2.1.8 age adoption passing confidence

Release Notes

eslint-stylistic/eslint-stylistic (@​stylistic/eslint-plugin-js)

v2.12.0

Compare Source

Bug Fixes
  • comma-style: handles comma after default import and trailing comma (#​600) (2d8d8ce)
  • function-call-spacing: remove invalid defaults from schema (#​617) (0714754)
  • indent: consider CallExpression when offsetTernaryExpressions is true (#​625) (55d3529)
  • jsx-wrap-multilines: text between replacement texts included in parentheses (#​618) (0764252)
Documentation
Chores
sveltejs/kit (@​sveltejs/kit)

v2.9.1

Compare Source

Patch Changes
  • fix: correctly match route groups preceding optional parameters (#​13099)
carbon-design-system/carbon-components-svelte (carbon-components-svelte)

v0.87.0

Compare Source

What's Changed

Full Changelog: carbon-design-system/carbon-components-svelte@v0.86.2...v0.87.0

carbon-design-system/carbon-preprocess-svelte (carbon-preprocess-svelte)

v0.11.9

Compare Source

Features

Fixes

  • optimizeImports: append line break to optimized path
debug-js/debug (debug)

v4.4.0

Compare Source

eslint-community/eslint-plugin-n (eslint-plugin-n)

v17.15.0

Compare Source

🌟 Features
🩹 Fixes
  • no-unsupported: Correctly handle recursive objects on a per module basis (#​396) (db384d1)
expressjs/express (express)

v4.21.2

Compare Source

rich-harris/magic-string (magic-string)

v0.30.15

Compare Source

Features
microsoft/playwright (playwright-core)

v1.49.1

Compare Source

pnpm/pnpm (pnpm)

v9.15.0

Compare Source

prettier/prettier (prettier)

v3.4.2

Compare Source

diff

Treat U+30A0 & U+30FB in Katakana Block as CJK (#​16796 by @​tats-u)

Prettier doesn't treat U+30A0 & U+30FB as Japanese. U+30FB is commonly used in Japanese to represent the delimitation of first and last names of non-Japanese people or “and”. The following “C言語・C++・Go・Rust” means “C language & C++ & Go & Rust” in Japanese.

<!-- Input (--prose-wrap=never) -->

C言
語
・
C++
・
Go
・
Rust

<!-- Prettier 3.4.1 -->
C言語・ C++ ・ Go ・ Rust

<!-- Prettier 3.4.2 -->
C言語・C++・Go・Rust

U+30A0 can be used as the replacement of the - in non-Japanese names (e.g. “Saint-Saëns” (Charles Camille Saint-Saëns) can be represented as “サン゠サーンス” in Japanese), but substituted by ASCII hyphen (U+002D) or U+FF1D (full width hyphen) in many cases (e.g. “サン=サーンス” or “サン=サーンス”).

Fix comments print on class methods with decorators (#​16891 by @​fisker)
// Input
class A {
  @&#8203;decorator
  /** 
   * The method description
   *
  */
  async method(foo: Foo, bar: Bar) {
    console.log(foo);
  }
}

// Prettier 3.4.1
class A {
  @&#8203;decorator
  async /**
   * The method description
   *
   */
  method(foo: Foo, bar: Bar) {
    console.log(foo);
  }
}

// Prettier 3.4.2
class A {
  @&#8203;decorator
  /**
   * The method description
   *
   */
  async method(foo: Foo, bar: Bar) {
    console.log(foo);
  }
}
Fix non-idempotent formatting (#​16899 by @​seiyab)

This bug fix is not language-specific. You may see similar change in any languages. This fixes regression in 3.4.0 so change caused by it should yield same formatting as 3.3.3.

// Input
<div>
  foo
  <span>longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo</span>
  , abc
</div>;

// Prettier 3.4.1 (first)
<div>
  foo
  <span>
    longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo
  </span>, abc
</div>;

// Prettier 3.4.1 (second)
<div>
  foo
  <span>longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo</span>
  , abc
</div>;

// Prettier 3.4.2
<div>
  foo
  <span>longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo</span>
  , abc
</div>;
sass/dart-sass (sass)

v1.82.0

Compare Source

Command-Line Interface
  • Improve --watch mode reliability when making multiple changes at once, such
    as checking out a different Git branch.

  • Parse the calc-size() function as a calculation now that it's supported in
    some browsers.

Dart API
  • Add a SassCalculation.calcSize() function.

v1.81.1

Compare Source

  • No user-visible changes.
sveltejs/svelte (svelte)

v5.10.0

Compare Source

Minor Changes
  • feat: provide links to documentation for errors/warnings (#​14629)
Patch Changes
  • fix: allow exports with source from script module even if no bind is present (#​14620)

  • fix: deconflict get_name for literal class properties (#​14607)

v5.9.1

Compare Source

Patch Changes
  • fix: mark subtree dynamic for bind with sequence expressions (#​14626)

v5.9.0

Compare Source

Minor Changes
  • feat: add support for bind getters/setters (#​14307)
Patch Changes
  • fix: always run if block code the first time (#​14597)

v5.8.1

Compare Source

Patch Changes
  • fix: reinstate missing prefersReducedMotion export (#​14586)

v5.8.0

Compare Source

Minor Changes
  • feat: add Spring and Tween classes to svelte/motion (#​11519)

v5.7.1

Compare Source

Patch Changes
  • fix: ensure bindings always take precedence over spreads (#​14575)

v5.7.0

Compare Source

Minor Changes
  • feat: add createSubscriber function for creating reactive values that depend on subscriptions (#​14422)

  • feat: add reactive MediaQuery class, and a prefersReducedMotion class instance (#​14422)

Patch Changes
  • fix: treat undefined and null the same for the initial input value (#​14562)

v5.6.2

Compare Source

Patch Changes
  • chore: make if blocks tree-shakable (#​14549)

v5.6.1

Compare Source

Patch Changes
  • fix: handle static form values in combination with default values (#​14555)

v5.6.0

Compare Source

Minor Changes
  • feat: support defaultValue/defaultChecked for inputs (#​14289)

v5.5.4

Compare Source

Patch Changes
  • fix: better error messages for invalid HTML trees (#​14445)

  • fix: remove spreaded event handlers when they become nullish (#​14546)

  • fix: respect the unidirectional nature of time (#​14541)

v5.5.3

Compare Source

Patch Changes
  • fix: don't try to add owners to non-$state class fields (#​14533)

  • fix: capture infinite_loop_guard in error boundary (#​14534)

  • fix: proxify values when assigning using ||=, &&= and ??= operators (#​14273)

v5.5.2

Compare Source

Patch Changes
  • fix: use correct reaction when lazily creating deriveds inside SvelteDate (#​14525)

v5.5.0

Compare Source

Minor Changes
  • feat: allow snippets to be exported from module scripts (#​14315)
Patch Changes
  • fix: ignore TypeScript generics on variables (#​14509)

v5.4.0

Compare Source

Minor Changes

v5.3.2

Compare Source

Patch Changes
  • fix: correctly prune CSS for elements inside snippets (#​14494)

  • fix: render attributes during SSR regardless of case (#​14492)

sveltejs/language-tools (svelte-check)

v4.1.1

Compare Source

  • fix: support each without as (#​2615)
typescript-eslint/typescript-eslint (typescript-eslint)

v8.18.0

Compare Source

🩹 Fixes
❤️ Thank You
  • rtritto

You can read about our versioning strategy and releases on our website.

v8.17.0

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

vitejs/vite (vite)

v6.0.3

Compare Source

vitest-dev/vitest (vitest)

v2.1.8

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v2.1.7

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

Configuration

📅 Schedule: Branch creation - "* 0-3 * * 1" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the dependencies label Dec 9, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e093aec to 2387e06 Compare December 9, 2024 05:26
@renovate renovate bot changed the title fix(deps): update all non-major dependencies chore(deps): update all non-major dependencies Dec 9, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 4ce901b to c778a3a Compare December 10, 2024 05:12
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c778a3a to 7418fa9 Compare December 10, 2024 08:49
@dominikg dominikg merged commit 1b302f1 into main Dec 10, 2024
6 checks passed
@dominikg dominikg deleted the renovate/all-minor-patch branch December 10, 2024 10:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant